 /* Hexagon Boxes Styling */
 *

.hex-body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 90%;
}


.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
}
.hexagon-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px;
    background-color: #f0f4f8;
    width:90%;
}
.hexagon {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #ddd;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    text-align: center;
    color: #333;
   
}
.hexagon-title {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #88b;
    font-weight: bold;
}
.hexagon-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    font-size: 14px;
    padding: 10px;
    text-align: center;
    font-size: 15px;
}
.hexagon:nth-child(1) { background-color: #ffd3d3; }
.hexagon:nth-child(2) { background-color: #d3eaff; }
.hexagon:nth-child(3) { background-color: #ffd3e8; }
.hexagon:nth-child(4) { background-color: #d3ffd9; }
.hexagon:nth-child(5) { background-color: #e8d3ff; }
.hexagon:nth-child(6) { background-color: #d3fff5; }   